home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / daemons / xgoned / xgoned.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-03-23  |  3.0 KB  |  129 lines

  1. /* 
  2.  * xgoned.c --
  3.  *
  4.  *    This program monitors the idle/busy state of the machine and
  5.  *    starts up a screen saver (xgone) if the machine has been
  6.  *    idle longer than a given amount of time.
  7.  *
  8.  * Copyright 1989 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /sprite/src/daemons/xgoned/RCS/xgoned.c,v 1.2 90/03/23 00:02:17 douglis Exp $ SPRITE (Berkeley)";
  20. #endif /* not lint */
  21.  
  22. #include <stdio.h>
  23. #include <sprite.h>
  24. #include <stdlib.h>
  25. #include <syslog.h>
  26. #include <option.h>
  27. #include <sysStats.h>
  28. #include <kernel/sched.h>
  29. #include <sys/types.h>
  30. #include <sys/wait.h>
  31.  
  32. /*
  33.  * Default interval, in seconds.
  34.  */
  35.  
  36. #define DEFAULT_INTERVAL 300
  37.  
  38.  
  39. int        interval = DEFAULT_INTERVAL;
  40. char        *screenSaver = "xgone";
  41. Boolean        detach = TRUE;
  42. Boolean        debug = FALSE;
  43.  
  44. Option optionArray[] = {
  45.     {OPT_INT, "t", (char *)&interval,
  46.          "Timeout before starting screen saver."},
  47.     {OPT_FALSE, "D", (char *)&detach,
  48.          "Don't detach the process."},
  49.     {OPT_TRUE, "d", (char *)&debug,
  50.         "Print out debugging information"},
  51. };
  52. static int numOptions = sizeof(optionArray) / sizeof(Option);
  53.  
  54. /*
  55.  *----------------------------------------------------------------------
  56.  *
  57.  * main --
  58.  *
  59.  *
  60.  * Results:
  61.  *    None.
  62.  *
  63.  * Side effects:
  64.  *    None.
  65.  *
  66.  *----------------------------------------------------------------------
  67.  */
  68.  
  69. main(argc, argv)
  70.     int        argc;
  71.     char    **argv;
  72. {
  73.     Sched_Instrument    stats;
  74.     ReturnStatus    status;
  75.     union wait        waitStatus;
  76.     char        *myname;
  77.     int            pid;
  78.     int            i;
  79.     extern int        errno;
  80.     int         wasActive = 1;
  81.  
  82.     argc = Opt_Parse(argc, argv, optionArray, numOptions,
  83.                OPT_ALLOW_CLUSTERING);
  84.  
  85.     myname = argv[0];
  86.  
  87.     if (interval < 1) {
  88.     fprintf(stderr, "%s: Invalid interval '%d'.\n", myname, interval);
  89.     exit(1);
  90.     }
  91.     if (detach) {
  92.     Proc_Detach(0);
  93.     }
  94.     while (1) {
  95.     if (debug) {
  96.         printf("Checking status.\n", interval);
  97.     }
  98.     status = Sys_Stats(SYS_SCHED_STATS, 0, (Address) &stats);
  99.     if (status != SUCCESS) {
  100.         fprintf(stderr, "%s: Sys_Stats failed, \"%s\"\n", myname,
  101.         Stat_GetMsg(status));
  102.         exit(1);
  103.     }
  104.     if (wasActive && stats.noUserInput.seconds > interval) {
  105.         wasActive = 0;
  106.         pid = vfork();
  107.         if (pid == 0) {
  108.         if (debug) {
  109.             printf("Execing %s.\n", screenSaver);
  110.         }
  111.         (void) execlp(screenSaver, screenSaver, 0);
  112.         fprintf(stderr, "Exec failed.\n");
  113.         _exit(1);
  114.         } else {
  115.         wait(&waitStatus);
  116.         if (debug) {
  117.             printf("Wait returned.\n");
  118.         }
  119.         }
  120.     } else if (stats.noUserInput.seconds <= interval) {
  121.         wasActive = 1;
  122.     }
  123.     if (debug) {
  124.         printf("Sleeping %d seconds.\n", interval >> 1);
  125.     }
  126.     sleep(interval >> 1);
  127.     }
  128. }
  129.